{% extends "base.html" %} {% load static %} {% block other_css %} {% endblock %} {% block sideDashBoard %} {% include "sideDashboard.html"%} {% endblock %} {% block content %}

{{info.count}}

{{info.jobFilter}}
Filter by Job:
{% for job in jobs %} {% endfor %}
Filter by Status:
{% for status,values in app_count.items %} {% endfor %}
{% csrf_token %}

Applications

{%csrf_token%}
{% for app in applications %} {%csrf_token%} {% endfor %}
Job Name Status Date Submitted Attachments Actions
{{app.job.title}} {{app.applicant.name}} {% if app.status == 'SB' %} Unread {% elif app.status == 'PR'%} Under Review {% elif app.status == 'AC'%} Accepted {% elif app.status == 'RJ'%} Rejected {% endif %} {{app.submission_date}} Profile

{% endblock content %} {% block other_js %} {% endblock %}